home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Puzzle / feednfrenzy.swf / scripts / frame_611 / PlaceObject2_265_184 / CLIPACTIONRECORD onClipEvent(enterFrame).as next >
Text File  |  2008-09-25  |  1KB  |  49 lines

  1. onClipEvent(enterFrame){
  2.    this._x += _global.xgo;
  3.    this._y += _global.ygo;
  4.    if(this._y > _root.player._y - 500)
  5.    {
  6.       yit = Math.floor(Math.random() * 371) + 30;
  7.       if(this._x < -500)
  8.       {
  9.          this._x = 900;
  10.          this._y = _root.depth._y - yit;
  11.          die = 1;
  12.          this.gotoAndStop(1);
  13.       }
  14.       if(this._x > 1000)
  15.       {
  16.          this._x = -400;
  17.          this._y = _root.depth._y - yit;
  18.          die = 1;
  19.          this.gotoAndStop(1);
  20.       }
  21.       if(scared < 50)
  22.       {
  23.          this._y -= 1;
  24.       }
  25.       if(die == 1)
  26.       {
  27.          myRadians = Math.atan2(this._y - _root.player._y,this._x - _root.player._x);
  28.          xleg = this._x - _root.player._x;
  29.          yleg = this._y - _root.player._y;
  30.          scared = Math.sqrt(xleg * xleg + yleg * yleg);
  31.          this._x += 4;
  32.       }
  33.       if(_root.player.eat.hitTest(this.eat))
  34.       {
  35.          die = 0;
  36.          reat = new Sound();
  37.          reat.attachSound("eatit1");
  38.          reat.start(0,1);
  39.          this.gotoAndPlay("die");
  40.          scoreity = 200;
  41.          _root.tools.instascore.text = "+" + scoreity;
  42.          _root.tools.instblock._alpha = 0;
  43.          _global.scoreit = _global.scoreit * 1 + scoreity;
  44.          _global.boost += scoreity / 30;
  45.          _root.tools.bar1.gotoAndStop(_global.boost + 1);
  46.       }
  47.    }
  48. }
  49.